POST
/
parcel
/
logistics
/
track-parcel
curl --request POST \
  --url https://api.mervii.com/beta/parcel/logistics/track-parcel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tracking_number": "202410086789949"
}'
"{\n    \"status\": true,\n    \"message\": \"\",\n    \"data\": {\n        \"pickup_origin\": {\n            \"city\": \"Lagos\",\n            \"region\": {\n                \"latitude\": 7.427026700000001,\n                \"longitude\": 3.8900142\n            },\n            \"address\": \"Ikolaba Rd, Ibadan 200285, Oyo, Nigeria\",\n            \"vehicle\": null,\n            \"contacts\": {\n                \"name\": \"Olakunle Olayemi\",\n                \"email\": \"abdul@gmail.com\",\n                \"phone_number\": \"09020500177\",\n                \"phone_number_2\": null\n            },\n            \"state_code\": \"LA\",\n            \"pickup_date\": null,\n            \"pickup_note\": null,\n            \"pickup_time\": null,\n            \"country_code\": \"NG\",\n            \"pickup_centre\": {\n                \"centre_code\": \"lagos-ojodu-berger\",\n                \"centre_name\": \"Ojodu Berger Lagos\"\n            }\n        },\n        \"pickup_date\": null,\n        \"destinations\": [\n            {\n                \"city\": \"Lagos\",\n                \"items\": [\n                    {\n                        \"name\": \"Book\",\n                        \"width\": null,\n                        \"height\": null,\n                        \"length\": null\n                    }\n                ],\n                \"price\": {\n                    \"amount\": 3000.98,\n                    \"distance\": \" Kilometres to the drop off center \",\n                    \"duration\": \"1-4 days\",\n                    \"discount_type\": \"Percetage\",\n                    \"amount_payable\": 3000.98,\n                    \"discount_amount\": 0,\n                    \"discount_description\": \"0% discount\"\n                },\n                \"weight\": \"1\",\n                \"address\": \"Ikolaba Rd, Ibadan 200285, Oyo, Nigeria\",\n                \"contacts\": {\n                    \"name\": \"Olakunle Olayemi\",\n                    \"email\": \"abdul@gmail.com\",\n                    \"phone_number\": \"09020500177\",\n                    \"phone_number_2\": null\n                },\n                \"state_code\": \"LA\",\n                \"centre_code\": \"ibadan-sango\",\n                \"item_weight\": 1,\n                \"country_code\": \"NG\",\n                \"delivery_note\": null,\n                \"dropoff_centre\": {\n                    \"centre_code\": \"ibadan-sango\",\n                    \"centre_name\": \"Sango Ibadan\"\n                }\n            }\n        ],\n        \"total_amount\": 11192.94,\n        \"total_discount_amount\": 0,\n        \"total_amount_payable\": 11192.94,\n        \"discount_type\": \"Percetage\",\n        \"discount_description\": \"0% discount\",\n        \"tracking_number\": \"202410086789949\",\n        \"complete_date\": null,\n        \"payment_method\": \"Mervii\",\n        \"status\": \"Pending\",\n        \"payment_ref\": null,\n        \"cube_ref\": null,\n        \"ref\": null,\n        \"created_at\": \"2024-10-08T21:09:31.000000Z\",\n        \"updated_at\": \"2024-10-08T21:09:31.000000Z\"\n    }\n}"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
Cache-Control
string
Postman-Token
string
Content-Type
string
Content-Length
string
Host
string
User-Agent
string
Accept
string
Accept-Encoding
string
Connection
string
accept
string

Body

application/json · object

The body is of type object.

Response

200 - text/plain
OK

The response is of type string.

Was this page helpful?